home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- CLS
- ECHO This batch file will print the Mandelbrot Magic documentation
- ECHO file MM.DOC to printer port PRN:
- ECHO Please check that the printer is on !
- ECHO Please check that you have enough paper to print
- ECHO the entire manual (about 40 pages).
- ECHO Press any key to begin (Ctrl-Break to exit)....
- PAUSE
- IF NOT EXIST MM.DOC GOTO :NOTFOUND
- ECHO Now printing MM.DOC...
- COPY MM.DOC PRN:
- ECHO MM.DOC printed...
- GOTO :END
- :NOTFOUND
- ECHO The file MM.DOC was not found. Please check your disk....
- :END